2025-03-31 11:18:00,682 [ 184506 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2025-03-31 11:18:00,682 [ 184506 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:97, check_args_and_update_paths) 2025-03-31 11:18:00,682 [ 184506 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:108, check_args_and_update_paths) 2025-03-31 11:18:00,682 [ 184506 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:110, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_omrcj1 --privileged --dns-search='.' --memory=30709035008 --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-odbc-bridge:/clickhouse-odbc-bridge --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-library-bridge:/clickhouse-library-bridge --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=6712d5cc610d -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=caad4729259e -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS=" -rfEps --run-id=2 --color=no --durations=0 test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup test_backward_compatibility/test_functions.py::test_string_functions -vvv" altinityinfra/integration-tests-runner:cd6390247eca '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: random-0.2, timeout-2.2.0, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0 timeout: 900.0s timeout method: signal timeout func_only: False collecting ... collected 2 items test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup FAILED [ 50%] test_backward_compatibility/test_functions.py::test_string_functions SKIPPED [100%] =================================== FAILURES =================================== _________________________ test_shutdown_cancels_backup _________________________ def test_shutdown_cancels_backup(): > with NoTrashChecker() as no_trash_checker: test_backup_restore_on_cluster/test_cancel_backup.py:554: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = type = None, value = None, traceback = None def __exit__(self, type, value, traceback): list_of_znodes = set( node1.query( "SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' " + "AND NOT (name == 'alive_tracker')" ).splitlines() ) new_znodes = list_of_znodes.difference(self.__previous_list_of_znodes) if new_znodes: print(f"Found nodes in ZooKeeper: {new_znodes}") for node in new_znodes: print( f"Nodes in '/clickhouse/backups/{node}':\n" + node1.query( f"SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups/{node}'" ) ) print( f"Nodes in '/clickhouse/backups/{node}/stage':\n" + node1.query( f"SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups/{node}/stage'" ) ) if self.check_zookeeper: assert new_znodes == set() list_of_backups = set( os.listdir(os.path.join(node1.cluster.instances_dir, "backups")) ) new_backups = list_of_backups.difference(self.__previous_list_of_backups) unfinished_backups = set( backup for backup in new_backups if not os.path.exists( os.path.join(node1.cluster.instances_dir, "backups", backup, ".backup") ) ) new_backups = set( backup for backup in new_backups if backup not in unfinished_backups ) if new_backups: print(f"Found new backups: {new_backups}") if unfinished_backups: print(f"Found unfinished backups: {unfinished_backups}") assert new_backups == set(self.expect_backups) assert unfinished_backups.difference(self.allow_unfinished_backups) == set() all_errors = set() start_time = time.strftime( "%Y-%m-%d %H:%M:%S", self.__start_time_for_collecting_errors ) for node in nodes: errors_query_result = node.query( "SELECT name FROM system.errors WHERE last_error_time >= toDateTime('" + start_time + "') " + "AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) " + "AND NOT (name == 'NO_ELEMENTS_IN_CONFIG')" ) errors = errors_query_result.splitlines() if errors: print(f"{get_node_name(node)}: Found errors: {errors}") print( node.query( "SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('" + start_time + "')" ) ) for error in errors: > assert (error in self.expect_errors) or (error in self.allow_errors) E AssertionError: assert ('NETLINK_ERROR' in ['QUERY_WAS_CANCELLED'] or 'NETLINK_ERROR' in []) E + where ['QUERY_WAS_CANCELLED'] = .expect_errors E + and [] = .allow_errors test_backup_restore_on_cluster/test_cancel_backup.py:394: AssertionError ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2025-03-31 11:18:04 [ 660 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:122, run_and_check) 2025-03-31 11:18:04 [ 660 ] DEBUG : Stdout:1 (cluster.py:146, run_and_check) 2025-03-31 11:18:04 [ 660 ] DEBUG : No running containers (conftest.py:96, cleanup_environment) 2025-03-31 11:18:04 [ 660 ] DEBUG : Pruning Docker networks (conftest.py:98, cleanup_environment) 2025-03-31 11:18:04 [ 660 ] DEBUG : Command:[docker network prune --force] (cluster.py:122, run_and_check) 2025-03-31 11:18:04 [ 660 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:122, run_and_check) 2025-03-31 11:18:04 [ 660 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:146, run_and_check) 2025-03-31 11:18:04 [ 660 ] INFO : Running tests in /ClickHouse/tests/integration/test_backup_restore_on_cluster/test_cancel_backup.py (cluster.py:2793, start) 2025-03-31 11:18:04 [ 660 ] DEBUG : Cluster start called. is_up=False (cluster.py:2800, start) 2025-03-31 11:18:04 [ 660 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup are NETWORK ID NAME DRIVER SCOPE (cluster.py:873, print_all_docker_pieces) 2025-03-31 11:18:04 [ 660 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:881, print_all_docker_pieces) 2025-03-31 11:18:04 [ 660 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup are DRIVER VOLUME NAME (cluster.py:889, print_all_docker_pieces) 2025-03-31 11:18:04 [ 660 ] DEBUG : Cleanup called (cluster.py:894, cleanup) 2025-03-31 11:18:04 [ 660 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup are NETWORK ID NAME DRIVER SCOPE (cluster.py:873, print_all_docker_pieces) 2025-03-31 11:18:04 [ 660 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:881, print_all_docker_pieces) 2025-03-31 11:18:04 [ 660 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup are DRIVER VOLUME NAME (cluster.py:889, print_all_docker_pieces) 2025-03-31 11:18:04 [ 660 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclustercancelbackup-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:04 [ 660 ] DEBUG : Unstopped containers: {} (cluster.py:908, cleanup) 2025-03-31 11:18:04 [ 660 ] DEBUG : No running containers for project: roottestbackuprestoreonclustercancelbackup (cluster.py:922, cleanup) 2025-03-31 11:18:04 [ 660 ] DEBUG : Trying to prune unused networks... (cluster.py:928, cleanup) 2025-03-31 11:18:04 [ 660 ] DEBUG : Trying to prune unused images... (cluster.py:944, cleanup) 2025-03-31 11:18:04 [ 660 ] DEBUG : Command:[docker image prune -f] (cluster.py:122, run_and_check) 2025-03-31 11:18:04 [ 660 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:146, run_and_check) 2025-03-31 11:18:04 [ 660 ] DEBUG : Images pruned (cluster.py:947, cleanup) 2025-03-31 11:18:04 [ 660 ] DEBUG : Trying to prune unused volumes... (cluster.py:953, cleanup) 2025-03-31 11:18:04 [ 660 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:122, run_and_check) 2025-03-31 11:18:04 [ 660 ] DEBUG : Stdout:1 (cluster.py:146, run_and_check) 2025-03-31 11:18:04 [ 660 ] DEBUG : Volumes pruned: 1 (cluster.py:958, cleanup) 2025-03-31 11:18:04 [ 660 ] DEBUG : Setup directory for instance: node1 (cluster.py:2813, start) 2025-03-31 11:18:04 [ 660 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4639, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Create directory for common tests configuration (cluster.py:4644, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Copy common configuration from helpers (cluster.py:4664, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Generate and write macros file (cluster.py:4716, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/lesser_timeouts.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/slow_backups.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/shutdown_cancel_backups.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node1/configs/config.d (cluster.py:4752, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node1/database (cluster.py:4769, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node1/logs (cluster.py:4780, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4864, create_dir) 2025-03-31 11:18:04 [ 660 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/backups (cluster.py:4911, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Setup directory for instance: node2 (cluster.py:2813, start) 2025-03-31 11:18:04 [ 660 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4639, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Create directory for common tests configuration (cluster.py:4644, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Copy common configuration from helpers (cluster.py:4664, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Generate and write macros file (cluster.py:4716, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/lesser_timeouts.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/slow_backups.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/shutdown_cancel_backups.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node2/configs/config.d (cluster.py:4752, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node2/database (cluster.py:4769, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node2/logs (cluster.py:4780, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4864, create_dir) 2025-03-31 11:18:04 [ 660 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/backups (cluster.py:4911, create_dir) 2025-03-31 11:18:04 [ 660 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw', 'keeper_binary': '/clickhouse', 'keeper_cmd_prefix': 'clickhouse keeper', 'image': 'altinityinfra/integration-test:6712d5cc610d', 'user': '0', 'keeper_fs': 'bind', 'keeper_logs_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper1/log', 'keeper_config_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper1/config', 'keeper_db_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper1/coordination', 'keeper_logs_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper2/log', 'keeper_config_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper2/config', 'keeper_db_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper2/coordination', 'keeper_logs_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper3/log', 'keeper_config_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper3/config', 'keeper_db_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper3/coordination'} stored in /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/.env (cluster.py:97, _create_env_file) 2025-03-31 11:18:04 [ 660 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-03-31 11:18:04 [ 660 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-03-31 11:18:04 [ 660 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-03-31 11:18:04 [ 660 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-03-31 11:18:04 [ 660 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2025-03-31 11:18:04 [ 660 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/.env --project-name roottestbackuprestoreonclustercancelbackup --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node2/docker-compose.yml pull] (cluster.py:122, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: zoo2 Skipped - Image is already being pulled by zoo1 (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: zoo3 Skipped - Image is already being pulled by zoo1 (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: node2 Skipped - Image is already being pulled by zoo1 (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: node1 Skipped - Image is already being pulled by zoo1 (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: zoo1 Pulling (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: zoo1 Pulled (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Setup ZooKeeper (cluster.py:2854, start) 2025-03-31 11:18:16 [ 660 ] DEBUG : Creating internal ZooKeeper dirs: ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper1/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper1/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper1/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper2/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper2/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper2/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper3/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper3/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/keeper3/coordination'] (cluster.py:2855, start) 2025-03-31 11:18:16 [ 660 ] DEBUG : Command:[docker compose --project-name roottestbackuprestoreonclustercancelbackup --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --verbose up -d] (cluster.py:122, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr:time="2025-03-31T11:18:16Z" level=trace msg="Docker Desktop integration not enabled" (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup_default Creating (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup_default Created (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo1-1 Creating (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo2-1 Creating (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo3-1 Creating (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo3-1 Created (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo1-1 Created (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo2-1 Created (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo1-1 Starting (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo2-1 Starting (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo3-1 Starting (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo2-1 Started (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo3-1 Started (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo1-1 Started (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr:time="2025-03-31T11:18:16Z" level=debug msg="otel error" error="" (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Stderr:time="2025-03-31T11:18:16Z" level=debug msg="otel error" error="" (cluster.py:148, run_and_check) 2025-03-31 11:18:16 [ 660 ] DEBUG : Wait ZooKeeper to start (cluster.py:2466, wait_zookeeper_to_start) 2025-03-31 11:18:16 [ 660 ] DEBUG : get_instance_ip instance_name=zoo1 (cluster.py:2082, get_instance_ip) 2025-03-31 11:18:16 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-zoo1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:16 [ 660 ] DEBUG : get_kazoo_client: zoo1, ip:172.16.1.3, port:2181, use_ssl:False (cluster.py:3341, get_kazoo_client) 2025-03-31 11:18:16 [ 660 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2025-03-31 11:18:16 [ 660 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-03-31 11:18:16 [ 660 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2025-03-31 11:18:16 [ 660 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-03-31 11:18:17 [ 660 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2025-03-31 11:18:17 [ 660 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-03-31 11:18:17 [ 660 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2025-03-31 11:18:17 [ 660 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-03-31 11:18:17 [ 660 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2025-03-31 11:18:17 [ 660 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-03-31 11:18:18 [ 660 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2025-03-31 11:18:18 [ 660 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-03-31 11:18:21 [ 660 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2025-03-31 11:18:21 [ 660 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=10000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-03-31 11:18:21 [ 660 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-03-31 11:18:21 [ 660 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-03-31 11:18:21 [ 660 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-03-31 11:18:21 [ 660 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-03-31 11:18:21 [ 660 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-03-31 11:18:21 [ 660 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-03-31 11:18:21 [ 660 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-03-31 11:18:21 [ 660 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-03-31 11:18:21 [ 660 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-03-31 11:18:21 [ 660 ] DEBUG : get_instance_ip instance_name=zoo2 (cluster.py:2082, get_instance_ip) 2025-03-31 11:18:21 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-zoo2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:21 [ 660 ] DEBUG : get_kazoo_client: zoo2, ip:172.16.1.2, port:2181, use_ssl:False (cluster.py:3341, get_kazoo_client) 2025-03-31 11:18:21 [ 660 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2025-03-31 11:18:21 [ 660 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=10000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-03-31 11:18:21 [ 660 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-03-31 11:18:21 [ 660 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-03-31 11:18:21 [ 660 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-03-31 11:18:21 [ 660 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-03-31 11:18:21 [ 660 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-03-31 11:18:21 [ 660 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-03-31 11:18:21 [ 660 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-03-31 11:18:21 [ 660 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-03-31 11:18:21 [ 660 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-03-31 11:18:21 [ 660 ] DEBUG : get_instance_ip instance_name=zoo3 (cluster.py:2082, get_instance_ip) 2025-03-31 11:18:21 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-zoo3-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:21 [ 660 ] DEBUG : get_kazoo_client: zoo3, ip:172.16.1.4, port:2181, use_ssl:False (cluster.py:3341, get_kazoo_client) 2025-03-31 11:18:21 [ 660 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2025-03-31 11:18:21 [ 660 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=10000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-03-31 11:18:21 [ 660 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-03-31 11:18:21 [ 660 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-03-31 11:18:21 [ 660 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-03-31 11:18:21 [ 660 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-03-31 11:18:21 [ 660 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-03-31 11:18:21 [ 660 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-03-31 11:18:21 [ 660 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-03-31 11:18:21 [ 660 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-03-31 11:18:21 [ 660 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-03-31 11:18:21 [ 660 ] DEBUG : All instances of ZooKeeper started: ('zoo1', 'zoo2', 'zoo3') (cluster.py:2482, wait_zookeeper_nodes_to_start) 2025-03-31 11:18:21 [ 660 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/.env --project-name roottestbackuprestoreonclustercancelbackup --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node2/docker-compose.yml up -d --no-recreate') (cluster.py:3200, start) 2025-03-31 11:18:21 [ 660 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/.env --project-name roottestbackuprestoreonclustercancelbackup --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node2/docker-compose.yml up -d --no-recreate] (cluster.py:122, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo1-1 Running (cluster.py:148, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo3-1 Running (cluster.py:148, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo2-1 Running (cluster.py:148, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node2-1 Creating (cluster.py:148, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node1-1 Creating (cluster.py:148, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node1-1 Created (cluster.py:148, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node2-1 Created (cluster.py:148, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node1-1 Starting (cluster.py:148, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node2-1 Starting (cluster.py:148, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node2-1 Started (cluster.py:148, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node1-1 Started (cluster.py:148, run_and_check) 2025-03-31 11:18:22 [ 660 ] DEBUG : ClickHouse instance created (cluster.py:3208, start) 2025-03-31 11:18:22 [ 660 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:2082, get_instance_ip) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:22 [ 660 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:2092, get_instance_global_ipv6) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:22 [ 660 ] DEBUG : Waiting for ClickHouse start in node1, ip: 172.16.1.6... (cluster.py:3216, start) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:22 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:23 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:23 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:23 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:23 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:23 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:23 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:23 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:23 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:23 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:23 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:24 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:24 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:24 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/855eb5d25248b28db4f1377e1e4e1c322d10f293d577a11960ec585c2645e427/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:24 [ 660 ] DEBUG : ClickHouse node1 started (cluster.py:3220, start) 2025-03-31 11:18:24 [ 660 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:2082, get_instance_ip) 2025-03-31 11:18:24 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:24 [ 660 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:2092, get_instance_global_ipv6) 2025-03-31 11:18:24 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:24 [ 660 ] DEBUG : Waiting for ClickHouse start in node2, ip: 172.16.1.5... (cluster.py:3216, start) 2025-03-31 11:18:24 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:24 [ 660 ] DEBUG : http://localhost:None "GET /v1.46/containers/4460008462cee379efccf1ed2d2c1bb47ea00a60cbd784a5f9d23cb0b3e3bcf7/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-03-31 11:18:24 [ 660 ] DEBUG : ClickHouse node2 started (cluster.py:3220, start) ----------------------------- Captured stdout call ----------------------------- Using node1 as initiator Sleeping 2.4821359560169105 seconds Waiting for number of system processes = 1+ Got 2 system processes for backup 70e0d607dbc64b0d9465138f040136f7 after waiting 0 seconds node1: Restarting... node1: Restarted Waiting for number of system processes = 0 Got 0 system processes for backup 70e0d607dbc64b0d9465138f040136f7 after waiting 0 seconds node1: Found errors: ['NETLINK_ERROR'] NO_ELEMENTS_IN_CONFIG Certificate file is not set. NETLINK_ERROR Can\'t receive Netlink response: error -2 ------------------------------ Captured log call ------------------------------- 2025-03-31 11:18:25 [ 660 ] DEBUG : Executing query SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' AND NOT (name == 'alive_tracker') on node1 (cluster.py:3677, query) 2025-03-31 11:18:25 [ 660 ] DEBUG : Executing query CREATE TABLE tbl ON CLUSTER 'cluster' (x UInt64) ENGINE=ReplicatedMergeTree('/clickhouse/tables/tbl/', '{replica}') ORDER BY tuple() PARTITION BY x%10 on node1 (cluster.py:3677, query) 2025-03-31 11:18:25 [ 660 ] DEBUG : Executing query INSERT INTO tbl SELECT number FROM numbers(10) on node1 (cluster.py:3677, query) 2025-03-31 11:18:26 [ 660 ] DEBUG : Executing query BACKUP TABLE tbl ON CLUSTER 'cluster' TO Disk('backups', '70e0d607dbc64b0d9465138f040136f7') SETTINGS id='70e0d607dbc64b0d9465138f040136f7' ASYNC on node1 (cluster.py:3677, query) 2025-03-31 11:18:26 [ 660 ] DEBUG : Executing query SELECT status FROM system.backups WHERE id='70e0d607dbc64b0d9465138f040136f7' on node1 (cluster.py:3677, query) 2025-03-31 11:18:26 [ 660 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%70e0d607dbc64b0d9465138f040136f7%') on node1 (cluster.py:3677, query) 2025-03-31 11:18:29 [ 660 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%70e0d607dbc64b0d9465138f040136f7%') on node1 (cluster.py:3677, query) 2025-03-31 11:18:29 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:True cmd: ['bash', '-c', 'ps -C clickhouse'] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:29 [ 660 ] DEBUG : Command:[docker exec -u root roottestbackuprestoreonclustercancelbackup-node1-1 bash -c ps -C clickhouse] (cluster.py:122, run_and_check) 2025-03-31 11:18:29 [ 660 ] DEBUG : Stdout: PID TTY TIME CMD (cluster.py:146, run_and_check) 2025-03-31 11:18:29 [ 660 ] DEBUG : Stdout: 8 ? 00:00:03 clickhouse (cluster.py:146, run_and_check) 2025-03-31 11:18:29 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', 'pkill clickhouse'] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:29 [ 660 ] DEBUG : Command:[docker exec -u root roottestbackuprestoreonclustercancelbackup-node1-1 bash -c pkill clickhouse] (cluster.py:122, run_and_check) 2025-03-31 11:18:30 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:30 [ 660 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:30 [ 660 ] DEBUG : Stdout:8 (cluster.py:146, run_and_check) 2025-03-31 11:18:31 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:31 [ 660 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:31 [ 660 ] DEBUG : Stdout:8 (cluster.py:146, run_and_check) 2025-03-31 11:18:32 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:32 [ 660 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:32 [ 660 ] DEBUG : Stdout:8 (cluster.py:146, run_and_check) 2025-03-31 11:18:33 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:33 [ 660 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:33 [ 660 ] DEBUG : Stdout:8 (cluster.py:146, run_and_check) 2025-03-31 11:18:34 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:34 [ 660 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:34 [ 660 ] DEBUG : Stdout:8 (cluster.py:146, run_and_check) 2025-03-31 11:18:35 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:35 [ 660 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:35 [ 660 ] DEBUG : Stdout:8 (cluster.py:146, run_and_check) 2025-03-31 11:18:36 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:36 [ 660 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:36 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:36 [ 660 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:36 [ 660 ] DEBUG : No clickhouse process running. Start new one. (cluster.py:4042, start_clickhouse) 2025-03-31 11:18:36 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', 'clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- '] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:36 [ 660 ] DEBUG : Command:[docker exec -u 0 roottestbackuprestoreonclustercancelbackup-node1-1 bash -c clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ] (cluster.py:122, run_and_check) 2025-03-31 11:18:37 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:37 [ 660 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:37 [ 660 ] DEBUG : Stdout:828 (cluster.py:146, run_and_check) 2025-03-31 11:18:37 [ 660 ] DEBUG : Clickhouse process running. (cluster.py:4053, start_clickhouse) 2025-03-31 11:18:37 [ 660 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2126, exec_in_container) 2025-03-31 11:18:37 [ 660 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:37 [ 660 ] DEBUG : Stdout:828 (cluster.py:146, run_and_check) 2025-03-31 11:18:37 [ 660 ] DEBUG : Executing query select 20 on node1 (cluster.py:3677, query) 2025-03-31 11:18:38 [ 660 ] DEBUG : Executing query select 20 on node1 (cluster.py:3677, query) 2025-03-31 11:18:39 [ 660 ] DEBUG : Executing query select 20 on node1 (cluster.py:3677, query) 2025-03-31 11:18:39 [ 660 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%70e0d607dbc64b0d9465138f040136f7%') on node1 (cluster.py:3677, query) 2025-03-31 11:18:39 [ 660 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%70e0d607dbc64b0d9465138f040136f7%') on node2 (cluster.py:3677, query) 2025-03-31 11:18:40 [ 660 ] DEBUG : Executing query SYSTEM FLUSH LOGS on node1 (cluster.py:3677, query) 2025-03-31 11:18:40 [ 660 ] DEBUG : Executing query SELECT status FROM system.backup_log WHERE id='70e0d607dbc64b0d9465138f040136f7' ORDER BY status on node1 (cluster.py:3677, query) 2025-03-31 11:18:41 [ 660 ] DEBUG : Executing query SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' AND NOT (name == 'alive_tracker') on node1 (cluster.py:3677, query) 2025-03-31 11:18:41 [ 660 ] DEBUG : Executing query SELECT name FROM system.errors WHERE last_error_time >= toDateTime('2025-03-31 11:18:25') AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) AND NOT (name == 'NO_ELEMENTS_IN_CONFIG') on node1 (cluster.py:3677, query) 2025-03-31 11:18:41 [ 660 ] DEBUG : Executing query SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('2025-03-31 11:18:25') on node1 (cluster.py:3677, query) ---------------------------- Captured log teardown ----------------------------- 2025-03-31 11:18:42 [ 660 ] DEBUG : Executing query DROP TABLE IF EXISTS tbl ON CLUSTER 'cluster' SYNC on node1 (cluster.py:3677, query) 2025-03-31 11:18:42 [ 660 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/.env --project-name roottestbackuprestoreonclustercancelbackup --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node2/docker-compose.yml stop --timeout 20] (cluster.py:122, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node2-1 Stopping (cluster.py:148, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node1-1 Stopping (cluster.py:148, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node2-1 Stopped (cluster.py:148, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node1-1 Stopped (cluster.py:148, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo1-1 Stopping (cluster.py:148, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo2-1 Stopping (cluster.py:148, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo3-1 Stopping (cluster.py:148, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo3-1 Stopped (cluster.py:148, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo1-1 Stopped (cluster.py:148, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo2-1 Stopped (cluster.py:148, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node1/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node1/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:122, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node2/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node2/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:122, run_and_check) 2025-03-31 11:18:43 [ 660 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/.env --project-name roottestbackuprestoreonclustercancelbackup --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-2/node2/docker-compose.yml down --volumes] (cluster.py:122, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node1-1 Stopping (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node2-1 Stopping (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node1-1 Stopped (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node1-1 Removing (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node2-1 Stopped (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node2-1 Removing (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node1-1 Removed (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-node2-1 Removed (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo2-1 Stopping (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo3-1 Stopping (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo1-1 Stopping (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo2-1 Stopped (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo2-1 Removing (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo1-1 Stopped (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo1-1 Removing (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo3-1 Stopped (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo3-1 Removing (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo2-1 Removed (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo3-1 Removed (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-zoo1-1 Removed (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup_default Removing (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup_default Removed (cluster.py:148, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Cleanup called (cluster.py:894, cleanup) 2025-03-31 11:18:44 [ 660 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup are NETWORK ID NAME DRIVER SCOPE (cluster.py:873, print_all_docker_pieces) 2025-03-31 11:18:44 [ 660 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:881, print_all_docker_pieces) 2025-03-31 11:18:44 [ 660 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup are DRIVER VOLUME NAME (cluster.py:889, print_all_docker_pieces) 2025-03-31 11:18:44 [ 660 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclustercancelbackup-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:122, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Unstopped containers: {} (cluster.py:908, cleanup) 2025-03-31 11:18:44 [ 660 ] DEBUG : No running containers for project: roottestbackuprestoreonclustercancelbackup (cluster.py:922, cleanup) 2025-03-31 11:18:44 [ 660 ] DEBUG : Trying to prune unused networks... (cluster.py:928, cleanup) 2025-03-31 11:18:44 [ 660 ] DEBUG : Trying to prune unused images... (cluster.py:944, cleanup) 2025-03-31 11:18:44 [ 660 ] DEBUG : Command:[docker image prune -f] (cluster.py:122, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:146, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Images pruned (cluster.py:947, cleanup) 2025-03-31 11:18:44 [ 660 ] DEBUG : Trying to prune unused volumes... (cluster.py:953, cleanup) 2025-03-31 11:18:44 [ 660 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:122, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Stdout:1 (cluster.py:146, run_and_check) 2025-03-31 11:18:44 [ 660 ] DEBUG : Volumes pruned: 1 (cluster.py:958, cleanup) ============================== slowest durations =============================== 19.57s setup test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 17.66s call test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 13.93s setup test_backward_compatibility/test_functions.py::test_string_functions 3.64s teardown test_backward_compatibility/test_functions.py::test_string_functions 2.38s teardown test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 0.27s call test_backward_compatibility/test_functions.py::test_string_functions =========================== short test summary info ============================ FAILED test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup SKIPPED [1] test_backward_compatibility/test_functions.py:164: The test is slow in builds with sanitizer ======================== 1 failed, 1 skipped in 57.53s ========================= Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 528, in subprocess.check_call(cmd, shell=True) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_omrcj1 --privileged --dns-search='.' --memory=30709035008 --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-odbc-bridge:/clickhouse-odbc-bridge --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-library-bridge:/clickhouse-library-bridge --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=6712d5cc610d -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=caad4729259e -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS=" -rfEps --run-id=2 --color=no --durations=0 test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup test_backward_compatibility/test_functions.py::test_string_functions -vvv" altinityinfra/integration-tests-runner:cd6390247eca ' returned non-zero exit status 1.